DevJourney

NodeJS/geeksforgeekstutorial/Http Server/Read Query/server.js

var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  res.write(req.url);
  res.end();
}).listen(8080);

/* Visit http://localhost:8080/hellothere */
View on GitHub